You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
358 B

  1. <template>
  2. <ArticleDetailView
  3. :detail="detail"
  4. :hot-list="data?.hotList || []"
  5. :tag-list="data?.tagList || []"
  6. />
  7. </template>
  8. <script setup>
  9. import { useArticleDetail } from '~/composables/useArticle'
  10. // 使用教程详情:/info/course/{id}.html(与原 PC 站保持一致)
  11. const { data, detail } = await useArticleDetail(2)
  12. </script>